home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / PRINTF1.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  262 b   |  10 lines

  1. /*  printf1.c, from p.450 of Turbo C Bible  */
  2. #include <stdio.h>
  3. main()
  4. {
  5.     int numprint;
  6.     char inbuf[81];
  7.     numprint = printf("Enter a string: ");
  8.     gets(inbuf);
  9.     printf("I printed %d characters and You entered:\n%s\n", numprint,inbuf);
  10. }